home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Language/OS - Multiplatform Resource Library
/
LANGUAGE OS.iso
/
cpp_libs
/
rjs.lha
/
RJS
/
String
/
tests
/
tbetween.C
< prev
next >
Wrap
C/C++ Source or Header
|
1991-06-14
|
201b
|
18 lines
#include "test.h"
#include "test.h"
void left_right_between()
{
String s1="Yes this a string";
Assert(s1.between(4,7)=="this");
Assert(s1.between(-223,7)=="");
Assert(s1.between(40,79)=="");
}